home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / midi / misc / MidiLib / Install_Midi-Library < prev    next >
Text File  |  1994-12-19  |  1KB  |  46 lines

  1. ;
  2. ; Install the midi.library in the system
  3. ;
  4. ; Copy it to libs: or a user chosen directory
  5. ;
  6.  
  7. (message "This will install the midi-library permanently on your system. "
  8.          "Many programs in the midi directory on this CD-ROM use this library. "
  9.          "If you don't use these programs frequently, running the "
  10.          "clickme.first at the top level of the CD-ROM will make the "
  11.          "library temporarily available to the programs (i. e. until the "
  12.          "next reboot).\n"
  13.          "If you plan to use these programs more frequently, it is "
  14.          "recommended that you run this script and install the library "
  15.          "on your hard disk.\n\nImportant Note: There are other "
  16.          "\"midi.library\"s, not compatible with this one! Be careful not "
  17.          "to overwrite one of these by accident!"
  18. )
  19.  
  20. (complete 25)
  21.  
  22. (copylib
  23.   (prompt "Copy midi.library")
  24.   (help "\n The midi.library will be copied to the specified "
  25.         "directory.")
  26.   (source "libs/midi.library")
  27.   (dest
  28.     (set @default-dest 
  29.       (askdir
  30.         (prompt "Where do you want the midi.library copied to?")
  31.         (help "\nSpecify the directory where you want tht midi.library "
  32.               "copied to. Usually this will be the LIBS: directory or "
  33.               "another directory added to LIBS: with an Assign ADD "
  34.               "command.\n\n"
  35.               @copylib-help
  36.         )
  37.         (default "LIBS:")
  38.         (disk)
  39.       )
  40.     )
  41.   )
  42.   (confirm)
  43. )
  44.  
  45. (complete 100)
  46.